home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 8
/
Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso
/
Aminet
/
util
/
cdity
/
Yak210src.lha
/
Yak_2.10_Src
/
Include
/
Code.h
next >
Wrap
C/C++ Source or Header
|
1995-04-01
|
581b
|
33 lines
#ifndef CODE_H
#define CODE_H
/* Compiler specific stuff */
#ifdef _DCC /* DICE */
# define __AMIGADATE__ "("__COMMODORE_DATE__")"
# define ASM
# define SAVEDS __geta4
# define STACKARGS __stkargs
# define WBMsg _WBMsg
# define REG(x) __ ## x
# define MAIN _main
#else /* SAS */
# define ASM __asm
# define SAVEDS __saveds
# define STACKARGS __stdargs
# define WBMsg _WBenchMsg
# define REG(x) register __ ## x
# define MAIN __main
#endif
#endif